home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / util2 / gdmgt205.lha / GadMget / GadMGet.source.lha / tree.h < prev    next >
C/C++ Source or Header  |  1995-07-14  |  253b  |  20 lines

  1. /* tree.h - declare structures used by tree.c
  2.  * vix 27jun86 [broken out of tree.c]
  3.  */
  4.  
  5.  
  6. #ifndef    _TREE_FLAG
  7. #define    _TREE_FLAG
  8.  
  9.  
  10. typedef    struct    tree_s
  11.     {
  12.         struct    tree_s    *tree_l, *tree_r;
  13.         short        tree_b;
  14.         char        *tree_p;
  15.     }
  16.     tree;
  17.  
  18.  
  19. #endif    _TREE_FLAG
  20.